Fix bug #9221 with memory leak in bidi display.
authorEli Zaretskii <eliz@gnu.org>
Fri, 5 Aug 2011 11:04:44 +0000 (14:04 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 5 Aug 2011 11:04:44 +0000 (14:04 +0300)
commite61d349dc5d1e9a5f1150445b595965868a865f6
tree8cdfa1764af62ea75944ae7849ae46cb8edad5a3
parent88f3ed61bb019ef0be696b1ce6d8b17ed0e8f8ff
parentd736a7c36fca2e768e0cbea832dc6a06ce7a6485
Fix bug #9221 with memory leak in bidi display.
Add code to monitor memory allocation for bidi cache shelving.

 src/xdisp.c (display_line): Release buffer allocated for shelved bidi
 cache.
 src/bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
 amount allocated this far in `bidi_cache_total_alloc'.
 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
 non-zero, only free the data buffer without restoring the cache
 contents.  All callers changed.
 src/dispextern.h (bidi_unshelve_cache): Update prototype.
 src/xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
 (move_it_in_display_line, move_it_to)
 (move_it_vertically_backward, move_it_by_lines): Replace the call
 to xfree to an equivalent call to bidi_unshelve_cache.
 (move_it_in_display_line_to): Fix logic of returning
 MOVE_POS_MATCH_OR_ZV in the bidi case.
src/ChangeLog
src/bidi.c
src/dispextern.h
src/dispnew.c
src/indent.c
src/window.c
src/xdisp.c